3f2715a21a403f57113294feb2d1f866aaaf32d8,src/net/java/sip/communicator/impl/protocol/jabber/OperationSetDesktopStreamingJabberImpl.java,OperationSetDesktopStreamingJabberImpl,createVideoCall,#String#,120

Before Change


        throws OperationFailedException
    {
        Call call = createOutgoingVideoCall(uri);
        size = (((VideoMediaFormat)((CallJabberImpl)call).getDefaultDevice(
                MediaType.VIDEO).getFormat()).getSize());
        origin = null;
        return call;
    }

After Change


        throws OperationFailedException
    {
        Call call = createOutgoingVideoCall(uri);
        MediaDevice device = ((CallJabberImpl)call).getDefaultDevice(
                MediaType.VIDEO);
        size = (((VideoMediaFormat)device.getFormat()).getSize());
        origin = getOriginForMediaDevice(device);
        return call;
    }